.about-section {
    padding: 90px 80px;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 15px;
    color: #444;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px var(--shadow-medium);
}

/* ICONS */
.about-icons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: flex-start;
}

.about-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
}

.about-icons div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.about-icons i {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--accent);
}

/* GALLERY */
.about-gallery {
    padding: 60px 80px;
    text-align: center;
}

.about-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.gallery-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.contact-section {
    background: #f6fbfd;
    padding: 60px 80px;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-item span,
.contact-item a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover,
.contact-item span:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    font-size: 16px; font-weight: 500;
    text-decoration: none; border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2); z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float img { width: 28px; height: 28px; }
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ================= MOBILE RESPONSIVE (ABOUT US) ================= */
/* Letak PALING BAWAH dalam about-us.css */

@media (max-width: 1024px){
  .about-section{ padding: 70px 40px; }
  .about-gallery{ padding: 50px 40px; }
  .contact-section{ padding: 50px 40px; }

  .about-container{ gap: 40px; }
}

@media (max-width: 900px){
  /* ABOUT: 2 column -> 1 column */
  .about-container{
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .about-section{
    padding: 52px 22px;
  }

  .about-text h2{
    font-size: 28px;
    margin-bottom: 14px;
    text-align: center;
  }

  .about-text p{
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
  }

  .about-image img{
    border-radius: 18px;
  }

  /* ICONS: dari row panjang -> grid 2 kolum */
  .about-icons{
    margin-top: 18px;
    justify-content: center;
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-icons div{
    padding: 14px 10px;
    border-radius: 16px;
  }

  .about-icons i{
    font-size: 30px;
    margin-bottom: 8px;
  }

  /* GALLERY */
  .about-gallery{
    padding: 44px 22px;
  }

  .about-gallery h2{
    font-size: 28px;
    margin-bottom: 10px;
  }

  .gallery-desc{
    font-size: 14px;
    margin-bottom: 22px;
  }

  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-grid img{
    height: 170px;
    border-radius: 14px;
  }

  /* CONTACT */
  .contact-section{
    padding: 44px 22px;
  }

  .contact-container{
    flex-direction: column;
    gap: 18px;
  }

  .contact-info h2{
    font-size: 26px;
    margin-bottom: 12px;
    text-align: center;
  }

  .contact-item{
    margin-bottom: 14px;
    text-align: center;
  }

  .contact-item strong{
    font-size: 13px;
  }

  .contact-item span,
  .contact-item a{
    font-size: 14px;
  }

  .contact-map{
    min-width: 100%;
    border-radius: 18px;
  }

  .contact-map iframe{
    height: 280px;
  }

  /* WhatsApp: kecil & tak kacau menu */
  .whatsapp-float{
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    z-index: 10005; /* ikut navbar overlay kau */
  }

  .whatsapp-float img{
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px){
  .about-section{ padding: 46px 16px; }
  .about-gallery{ padding: 40px 16px; }
  .contact-section{ padding: 40px 16px; }

  .about-text h2{ font-size: 26px; }

  /* icons jadi 1 column bila screen kecil sangat */
  .about-icons{
    grid-template-columns: 1fr;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-grid img{
    height: 190px;
  }

  .contact-map iframe{
    height: 260px;
  }
}

/* ================== ENHANCED ABOUT STYLING (PASTE BAWAH SEKALI) ================== */

/* ABOUT SECTION - lebih premium */
.about-section{
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.about-container{
  max-width: 1100px;
  margin: 0 auto;
}

/* Text alignment + spacing */
.about-text{
  max-width: 540px;
}

.about-text h2{
  position: relative;
  padding-left: 16px;             /* space untuk accent line */
  letter-spacing: .2px;
}

.about-text h2::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: var(--accent);
  border-radius: 999px;
  opacity: .9;
}

.about-text p{
  font-size: 15px;
  line-height: 1.95;
  color: #3f3f3f;
}

/* bagi paragraph nampak tersusun */
.about-text p:last-child{
  margin-bottom: 0;
}

/* ICONS - kemaskan card */
.about-icons{
  margin-top: 26px;
  gap: 16px;
}

.about-icons div{
  width: 160px;
  padding: 16px 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.05);
  backdrop-filter: blur(6px);
}

.about-icons div span{
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.about-icons i{
  font-size: 34px;
}

/* soft hover untuk semua image */
.gallery-grid img,
.about-image img{
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-grid img:hover,
.about-image img:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* GALLERY - spacing + text lebih sedap */
.about-gallery{
  background: #fff;
}

.gallery-desc{
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-size: 14px;
}

/* CONTACT SECTION - buat macam premium card */
.contact-section{
  background: linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
}

.contact-container{
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info{
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 20px;
  padding: 26px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.contact-info p{
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-item{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.04);
}

.contact-item strong{
  font-size: 13px;
  letter-spacing: .2px;
}

.social-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-links a{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-size: 13px;
}

.social-links a:hover{
  background: rgba(0,0,0,.03);
  padding-left: 12px; /* buang effect lari kiri kamu yang lama untuk link social */
}

/* buang hover "padding-left" yang buat teks lari untuk CONTACT (optional) */
.contact-item a:hover,
.contact-item span:hover{
  padding-left: 0;
}

/* MAP bagi nampak lebih premium */
.contact-map{
  border: 1px solid rgba(0,0,0,.05);
}

/* ================= MOBILE TWEAK (lebih cantik & centered) ================= */
@media (max-width: 900px){

  .about-text{
    max-width: 100%;
    text-align: center;
  }

  .about-text h2{
    padding-left: 0;
    display: inline-block;
  }

  .about-text h2::before{
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    width: 46px;
    height: 4px;
  }

  .about-text p{
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-icons{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-icons div{
    width: 100%;
  }

  .contact-info{
    padding: 20px 18px;
  }

  .contact-item{
    text-align: left; /* lebih readable untuk address/phone */
  }
}

@media (max-width: 480px){
  .about-icons{
    grid-template-columns: 1fr;
  }

  .contact-item{
    text-align: left;
  }
}

/* ===== HERO kemas + language switch premium ===== */

.about-hero{
  position: relative;
  padding: 90px 80px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.about-hero h1{
  font-family:'Playfair Display', serif;
  font-size: 54px;
  letter-spacing: 1px;
  margin: 0;
  color:#fff;              /* kalau hero ada background gelap */
  position: relative;
  z-index:2;
}

.about-hero .hero-sub{
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  z-index:2;
  position: relative;
}

/* Switch duduk atas kanan dalam hero */
.hero-switch{
  position:absolute;
  top: 18px;
  right: 22px;
  z-index: 3;
  display:flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}

.hero-switch .lang-btn{
  border: 0;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: .25s ease;
}

.hero-switch .lang-btn:hover{
  background: rgba(255,255,255,.18);
}

.hero-switch .lang-btn.active{
  background: #fff;
  color: #111;
  font-weight: 600;
}

/* MOBILE */
@media(max-width:900px){
  .about-hero{ padding: 70px 18px; }
  .about-hero h1{ font-size: 38px; }
  .hero-switch{ right: 14px; top: 14px; }
}

/* ===== HERO kemas + language switch premium ===== */
    .about-hero{
      position: relative;
      padding: 90px 80px;
      display:flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;
      text-align:center;
      overflow:hidden;
    }

    .about-hero .overlay{
      position:absolute;
      inset:0;
      background: rgba(20,80,100,0.75);
      z-index:1;
    }

    /* kalau about-hero kamu guna background image dalam CSS, ini ok.
       kalau belum, boleh uncomment bawah dan letak gambar:
    */
    /* .about-hero{
      background:url("images/gallery/gallery2.jpg") center/cover no-repeat;
    } */

    .about-hero h1{
      font-family:'Playfair Display', serif;
      font-size: 54px;
      letter-spacing: 1px;
      margin: 0;
      color:#fff;
      position: relative;
      z-index:2;
    }

    .about-hero .hero-sub{
      margin-top: 12px;
      font-size: 15px;
      color: rgba(255,255,255,.85);
      max-width: 520px;
      z-index:2;
      position: relative;
      line-height: 1.7;
    }

    /* Switch duduk atas kanan dalam hero */
    .hero-switch{
      position:absolute;
      top: 18px;
      right: 22px;
      z-index: 3;
      display:flex;
      gap: 8px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(10px);
    }

    .hero-switch .lang-btn{
      border: 0;
      background: transparent;
      color: #fff;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 12px;
      cursor: pointer;
      transition: .25s ease;
    }

    .hero-switch .lang-btn:hover{
      background: rgba(255,255,255,.18);
    }

    .hero-switch .lang-btn.active{
      background: #fff;
      color: #111;
      font-weight: 600;
    }

    @media(max-width:900px){
      .about-hero{ padding: 70px 18px; }
      .about-hero h1{ font-size: 38px; }
      .hero-switch{ right: 14px; top: 14px; }
    }
    
    .about-highlights {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      max-width: 540px;
    }

    .highlight-card {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .85);
      border: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    }

    .highlight-card i {
      font-size: 18px;
      margin-top: 2px;
      color: var(--accent);
      width: 22px;
      text-align: center;
    }

    .highlight-card .title {
      font-weight: 700;
      font-size: 13px;
      color: var(--primary);
      margin-bottom: 3px;
    }

    .highlight-card .desc {
      font-size: 13px;
      color: #444;
      line-height: 1.6;
    }

    /* Mobile */
    @media(max-width:900px) {
      .about-hero {
        padding: 70px 18px;
      }

      .about-hero h1 {
        font-size: 38px;
      }

      .hero-switch {
        right: 14px;
        top: 14px;
      }

      .about-highlights {
        grid-template-columns: 1fr;
        max-width: 560px;
      }
    }